home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / prcmfixs.arc / PRCMHOST.ARC / PRCMHOST.BAT next >
DOS Batch File  |  1987-06-08  |  409b  |  19 lines

  1. echo off
  2. rem   format:    PRCMHOST  [/t hh[:mm]]
  3. rem
  4. rem   Enter without parameters to immediately begin execution.
  5. rem   Enter with /t option and time to start at the given time.
  6. rem
  7. rem   by d.matthews
  8. rem
  9. if "%1" == "/t" goto timed
  10. procomm /fprcmhost.cmd
  11. goto exit
  12. :timed
  13. if "%2" == "" goto help
  14. tef autohost.cmd %2
  15. goto exit
  16. :help
  17. echo You must specify a time with the /t option.
  18. :exit
  19.